home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010921-20020314 / 000370_fdc@columbia.edu_Wed Feb 13 14:44:12 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  1KB  |  34 lines

  1. Article: 13214 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: if syntax change
  6. Date: 13 Feb 2002 14:44:00 -0500
  7. Organization: Columbia University
  8. Lines: 17
  9. Message-ID: <a4efm0$ce9$1@watsol.cc.columbia.edu>
  10. References: <26dc2188.0202081336.79eb8459@posting.google.com> <26dc2188.0202110943.62504aec@posting.google.com> <a491sp$85l$1@watsol.cc.columbia.edu> <26dc2188.0202131131.7ec3359f@posting.google.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1013629441 9288 128.59.39.139 (13 Feb 2002 19:44:01 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 13 Feb 2002 19:44:01 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13214
  16.  
  17. In article <26dc2188.0202131131.7ec3359f@posting.google.com>,
  18. David L. Harfst <harfst@cms-stl.com> wrote:
  19. : Try this:
  20. : def FastBlazer {
  21. :   set modem type telebit
  22. :   xif EQUAL "\$(SPEED)" "14400" {
  23. :     set modem command init-string AT&F%S0*M10*W4M0X6V1\{13}
  24. :   }
  25. : }
  26. : FastBlazer
  27. OK, you got me.  Subtle parsing error.  Use this form:
  28.  
  29.   set modem command init-string AT&F%S0*M10*W4M0X6V1\13
  30.  
  31. - Frank
  32.